From 169630c768bd1597eb57eab76fe568f884a2902b Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 29 Dec 2014 19:03:54 -0800 Subject: [PATCH] Fix 'make no-exes' --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 049a0929b..d2c0f4b2d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -91,7 +91,8 @@ style: no-exes: find $$(git ls-files) -perm +111 -type f \ - -not -name configure -not -name '*.sh' -not -name '*.rs' | \ + -not -name configure -not -name '*.sh' -not -name '*.rs' \ + -not -wholename "*/rust-installer/*" | \ grep '.*' \ && exit 1 || exit 0 -- 2.30.2